There are many ways to handle this. One method is to use translate and scale to switch the coordinate system back. If, for example, the page is 760 pixels tall, you could use:
0 760 translate 1 -1 scale newpathto translate 0,0 back to the bottom left corner of the page. The rest of your PostScript code can then be sent as-is. Be sure to undo the effects of the translate and scale operations before attempting to draw any GX objects, or they will be upside-down as well.
I tried to enclose the EPS preview shape within a picture shape. The EPS
synonym tag was attached to the picture shape, and a vertical reflection
mapping was applied both to the preview shape and the picture shape itself. The
idea was that the PostScript would be reflected once vertically (and thus print
correctly) while the enclosed preview shape would be reflected twice vertically
(and thus display correctly). Unfortunately, the PostScript did not print in
the correct place, while the preview shape displayed correctly, but glacially.
I'd appreciate any suggestions as to how to handle this in a
position-independent manner.
A We've provided a function called EPStoShape that is an example of how to
encapsulate your EPS into a GX shape. This sample is very simple, and it needs
to be extended for use in a real application.
There are two cases that the sample code cannot handle:
1. With large EPS files, the EPStoShape routine reads the entire EPS file into a single handle, which is added to the shape as a 'post' collection. This works fine for small sample files, but to support larger EPS files, you should modify this routine to read the file in sections, adding multiple, smaller collections to the shape. This reduces the memory requirements at print time.
2. The EPStoShape function looks for the %%BoundingBox comment in the EPS file to determine the size of the document/shape. This comment is usually found just before the actual document data, and it is followed by 4 integers representing the top,left,bottom,right of the bounding box. However, to make writing EPS files easier, the format of this comment was extended. Now, do the following:
%% BoundingBox: (atend)
<Actual Document Data>
%% BoundingBox: 0 0 10 10
In this case, the '(atend)' tells the reader that the actual bounding box can be found at-end of document data. The EPStoShape function assumes that the first BoundingBox comment has the four coordinates and generates bogus PostScript code if the (atend) keyword is found instead. To use this routine in your application, you should modify it to check for the (atend) construct and to look for the second BoundingBox comment, if it is found.
Both of these modifications should be easy to implement.
Reads in an EPS file and makes a shape out of it. If there was a PICT resource in it, it translates it to Skia, if there is no PICT resource, it will make a rectangle shape the width and height of the bounding box from the EPS BoundingBox:: comment with first point at 0,0.
In either case, the EPS file will be attached to the shape with 'post' tag synonyms.
Additional PostScript will be attached to make it so the PostScript renders through the shape's transform (obviously, no perspective allowed here) properly when printing through the Skia-PostScript Imaging System.
The algorithm for this comes from the PostScript Language Reference Manual, 2nd edition. Page 724.
step 1. left bottom translate %% where left,bottom is left, bottom of QD shape's bounds.Routine does not check for the validity of the EPS data or version. It assumes the PostScript is valid EPS with bounding box comment.
/******************************************************/gxShape EPSFileToShape(Str255 fName, short vRefNum) { OSErr status; PicHandle thePict; Rect theRect; Point patStretch = {1,1}; gxShape theShape = nil; short refNum; gxTag synTag; long size; Handle hPsData; long startComment, endComment; Str32 num1; char tagString[300]; long tagSize, pieceSize; gxTranslationStatistic seanStats; /** Now get the PostScript data **/ status = FSOpen(fName, vRefNum, &refNum); ncheck(status); GetEOF(refNum, &size); hPsData = NewHandle(size); HLock(hPsData); /** Read in the whole EPS file **/ status = FSRead(refNum, &size, *hPsData); ncheck(status); FSClose(refNum); /** Find the bounding box comment (Numbers only) **/ startComment = Munger(hPsData, 0, "%%BoundingBox:", 14, nil, 0) + 14; endComment = Munger(hPsData , startComment, "\n", 1, nil, 0); refNum = OpenRFPerm(fName, vRefNum, 0); thePict = (PicHandle)GetResource('PICT', 256); if (thePict != nil) { theRect = (*thePict)->picFrame; theShape = GXNewShape(gxPictureType); (void) GXConvertPICTToShape(thePict, gxDefaultOptionsTranslation, &theRect, &theRect, patStretch, theShape, &seanStats); status = GXGetGraphicsError(nil); ncheck(status); ReleaseResource((Handle)thePict); } else { float x1, y1, x2, y2; gxRectangle theRectangle; sscanf(*hPsData + startComment, "%f %f %f %f", &x1, &y1, &x2, &y2); theRectangle.top = 0; theRectangle.left = 0; theRectangle.right = X2Fix(x2 - x1); theRectangle.bottom = X2Fix(y2 - y1); /** We need the QuickDraw rectnagle for the embedded PostScript origin translage **/ theRect.top = 0; theRect.left = 0; theRect.bottom= theRectangle.bottom >> 16; theRect.right = theRectangle.right >> 16; theShape = GXNewRectangle(&theRectangle); }//end if CloseResFile(refNum); /** translate to Left Bottom of QuickDraw rectangle **/ tagSize = 0; NumToString(theRect.left, num1); num1[(unsigned char)num1[0] + 1] = ' '; pieceSize = (unsigned char)num1[0] + 1; BlockMove(&(num1[1]), tagString, pieceSize); tagSize += pieceSize; NumToString(theRect.bottom, num1); pieceSize = (unsigned char)num1[0]; BlockMove(&(num1[1]), tagString + tagSize, pieceSize); tagSize += pieceSize; BlockMove(" translate\n", tagString + tagSize, 11); tagSize += 11; /** flip y axis **/ BlockMove(" 1 -1 scale\n", tagString + tagSize, 12); tagSize += 12; synTag = GXNewTag( gxPostScriptTag, tagSize, tagString); GXSetShapeTags(theShape, gxPostScriptTag, 0, 0, 1, &synTag); GXDisposeTag(synTag); /** Translate to -(LLx) -(LLy) **/ // 4 bbox numbers from operand comment string on operand stack synTag = GXNewTag( gxPostScriptTag, endComment - startComment + 1, *hPsData + startComment); GXSetShapeTags(theShape, gxPostScriptTag, 0, 0, 1, &synTag); GXDisposeTag(synTag); // Pop the second two, translate to negative of first two. synTag = GXNewTag( gxPostScriptTag, 36, "pop pop neg exch neg exch translate\n"); GXSetShapeTags(theShape, gxPostScriptTag, 0, 0, 1, &synTag); GXDisposeTag(synTag); /** The PostScript Synonym itself **/ synTag = GXNewTag( gxPostScriptTag, size, *hPsData); GXSetShapeTags(theShape, gxPostScriptTag, 0, 0, 1, &synTag); GXDisposeTag(synTag); DisposHandle(hPsData); check(theShape); return(theShape); }//EPSFileToShape
Main | Page One | What's New | Apple Computer, Inc. | Find It | Contact Us | Help